Passer au contenu principal
GET
/
v1
/
subscriptions
/
templates
/
{id}
Get subscription template
curl --request GET \
  --url https://api.hyperline.co/v1/subscriptions/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "subt_7gdusOkqr5L0B8",
  "name": "Starter",
  "description": "Starter pack",
  "configurations": [],
  "created_at": "2025-11-30T18:24:34.473Z",
  "updated_at": "2025-11-30T18:24:34.473Z"
}

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Paramètres de chemin

id
string
requis

Réponse

200 - application/json
id
string
requis

Subscription template ID.

Exemple:

"subt_7gdusOkqr5L0B8"

name
string
requis

Subscription template name.

Exemple:

"Starter"

description
string | null
requis

Subscription template description.

Exemple:

"Starter pack"

configurations
object[]
requis

Subscription template configurations.

Exemple:
[]
created_at
string<date-time>
requis

Subscription template creation date. UTC date time string in the ISO 8601 format.

Exemple:

"2025-11-30T18:24:34.473Z"

updated_at
string<date-time>
requis

Subscription template last edition date. UTC date time string in the ISO 8601 format.

Exemple:

"2025-11-30T18:24:34.473Z"